home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / games / misc / arcanoid / miniarcanoid.install < prev    next >
Text File  |  1996-05-08  |  2KB  |  121 lines

  1. ; MiniArcanoid Installer script
  2.  
  3. (welcome)
  4.  
  5. (set destdir
  6.     (askdir
  7.         (prompt "Select where MiniArcanoid drawer should be created")
  8.         (help @askdir-help)
  9.         (default @default-dest)
  10.     )
  11. )
  12.  
  13. (set @default-dest (tackon destdir "MiniArcanoid"))
  14. (if (NOT (exists @default-dest))
  15.     (makedir @default-dest (infos))
  16. )
  17.  
  18. (copyfiles
  19.     (source "MiniArcanoid")
  20.     (dest @default-dest)
  21.     (help @copyfiles-help)
  22.     (infos)
  23. )
  24.  
  25. (copyfiles
  26.     (source "MiniArcanoid.info")
  27.     (dest @default-dest)
  28.     (help @copyfiles-help)
  29.     (infos)
  30. )
  31.  
  32. (set opts
  33.     (askoptions
  34.         (prompt "Please confirm if you'd like to install these")
  35.         (help @askoptions-help)
  36.         (choices "Documentation" "Sound samples" "Installer script")
  37.         (default 3)
  38.     )
  39. )
  40.  
  41. (if (IN opts 0)
  42.     ((copyfiles
  43.         (prompt "Copying documentation")
  44.         (source "MiniArcanoid.guide")
  45.         (dest @default-dest)
  46.         (help @copyfiles-help)
  47.         (infos)
  48.     )
  49.     (copyfiles
  50.         (prompt "Copying documentation")
  51.         (source "MiniArcanoid.guide.info")
  52.         (dest @default-dest)
  53.         (help @copyfiles-help)
  54.         (infos)
  55.     ))
  56. )
  57.  
  58. (if (IN opts 1)
  59.     ((copyfiles
  60.         (prompt "Copying samples")
  61.         (source "applause.snd")
  62.         (dest @default-dest)
  63.         (help @copyfiles-help)
  64.         (infos)
  65.     )
  66.     (copyfiles
  67.         (prompt "Copying samples")
  68.         (source "brick.snd")
  69.         (dest @default-dest)
  70.         (help @copyfiles-help)
  71.         (infos)
  72.     )
  73.     (copyfiles
  74.         (prompt "Copying samples")
  75.         (source "hardbrick.snd")
  76.         (dest @default-dest)
  77.         (help @copyfiles-help)
  78.         (infos)
  79.     )
  80.     (copyfiles
  81.         (prompt "Copying samples")
  82.         (source "letter.snd")
  83.         (dest @default-dest)
  84.         (help @copyfiles-help)
  85.         (infos)
  86.     )
  87.     (copyfiles
  88.         (prompt "Copying samples")
  89.         (source "lost.snd")
  90.         (dest @default-dest)
  91.         (help @copyfiles-help)
  92.         (infos)
  93.     )
  94.     (copyfiles
  95.         (prompt "Copying samples")
  96.         (source "stick.snd")
  97.         (dest @default-dest)
  98.         (help @copyfiles-help)
  99.         (infos)
  100.     ))
  101. )
  102.  
  103. (if (IN opts 2)
  104.     ((copyfiles
  105.         (prompt "Copying installer script")
  106.         (source "MiniArcanoid.install")
  107.         (dest @default-dest)
  108.         (help @copyfiles-help)
  109.         (infos)
  110.     )
  111.     (copyfiles
  112.         (prompt "Copying installer script")
  113.         (source "MiniArcanoid.install.info")
  114.         (dest @default-dest)
  115.         (help @copyfiles-help)
  116.         (infos)
  117.     ))
  118. )
  119.  
  120. (exit)
  121.